home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / gfx / fract / fu1_61.lha / Formulas / Tri58.Form < prev    next >
Text File  |  1994-05-02  |  255b  |  30 lines

  1. Tri58
  2. {
  3.     {
  4.         mirrorx
  5.         x1=-5.0
  6.         x2= 50.0
  7.         y1=-20.0
  8.         y2= 20.0
  9.         bailout=2.0            ; Bailoutvalue
  10.     }
  11.     {
  12.         t=sin(pixel)        
  13.         r=log(pixel)
  14.         pixel=t*r
  15.         pixel=[1.0,0.0]/pixel
  16.         z=pixel*r
  17.         c=pixel*t
  18.     }
  19.     {
  20.         z=z*z
  21.         z=z+c
  22.         w=abs(z)
  23.     }
  24.     {
  25.         w>bailout
  26.     }
  27.     {
  28.     }
  29. }
  30.